This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Chris Cisfanakonyoni 11.Dec.03 01:01 PM a Web browser Domino DesignerAll ReleasesAll Platforms
have a java agent that uses an external jar of java utility classes. The structure is:
- util.jar (containing classes in com.keymed.java.utils package)
- JavaAgent.class (a basic class that imports and uses classes in the jar file).
In Eclipse, the output directory is set to contain both files. Viewing them through the IDE, Eclipse shows classes in the jar under the correct package, there are no compiliation problems.
However, when i try to use them in an imported java agent, I get this error:
Unexpected error while executing java agent:JavaAgent
-->java.lang.VerifyError
java.lang.VerifyError
at java.lang.ClassLoader.resolveClass(ClassLoader.java:237)
at lotus.domino.AgentLoader.loadClass(AgentLoader.java:108)
at java.lang.ClassLoader.loadClass(ClassLoader.java:154)
at lotus.domino.AgentLoader.runAgent(AgentLoader.java:184)
Does anyone know how I can set up the jar so it works correctly in the agent?